Skip to main content

Verify

POST 

https://public.api.mentaport.xyz/prod/v1/verify

Use this function for verify content for files under 10MB. For larger files, switch to the Verify Presigned method to handle most content efficiently.

Request

Responses

Successful response

Authorization: http

name: apikeyAuthtype: httpin: 
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://public.api.mentaport.xyz/prod/v1/verify");
request.Headers.Add("Accept", "application/json");
var content = new StringContent(string.Empty);
content.Headers.ContentType = new MediaTypeHeaderValue("multipart/form-data");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://public.api.mentaport.xyz/prod/v1
Auth
Parameters
— queryrequired
— query
— header
Body
required
content
ResponseClear

Click the Send API Request button above and see the response here!